home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / texted1a / frmoptio.frm (.txt) < prev    next >
Visual Basic Form  |  1999-09-18  |  1KB  |  49 lines

  1. VERSION 5.00
  2. Begin VB.Form frmOptions 
  3.    Caption         =   "Text Editor - Options"
  4.    ClientHeight    =   1950
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3810
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MDIChild        =   -1  'True
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   1950
  13.    ScaleWidth      =   3810
  14.    Begin VB.CommandButton cmdCancel 
  15.       Cancel          =   -1  'True
  16.       Caption         =   "&Cancel"
  17.       Height          =   255
  18.       Left            =   2760
  19.       TabIndex        =   2
  20.       Top             =   1680
  21.       Width           =   975
  22.    End
  23.    Begin VB.CommandButton cmdOk 
  24.       Caption         =   "&Ok"
  25.       Height          =   255
  26.       Left            =   120
  27.       TabIndex        =   1
  28.       Top             =   1680
  29.       Width           =   1095
  30.    End
  31.    Begin VB.CheckBox chkToolbar 
  32.       Caption         =   "Toolbar"
  33.       Height          =   255
  34.       Left            =   120
  35.       TabIndex        =   0
  36.       Top             =   240
  37.       Width           =   975
  38.    End
  39. Attribute VB_Name = "frmOptions"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Private Sub cmdCancel_Click()
  45.     Me.Hide
  46. End Sub
  47. Private Sub Form_Load()
  48. End Sub
  49.